html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background: #e4e4e4 !important; 
  margin: 0rem;
  padding-top: 100px;
  overflow-x: hidden;
}

* {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For Firefox */
  -ms-user-select: none; /* For Internet Explorer/Edge */
}

.navbar {
  background-color: #e4e4e4 !important;
  border-bottom: 2px solid #3d3434 !important;
}

.navbar-brand h1 {
  color: #3d3434;
  font-family: "Gasoek One", sans-serif;
  font-size: 2rem;
}

.navbar-nav {
  gap: 2rem;
}

@media (min-width: 1200px) and (max-width: 1325px){
  .navbar-nav {
    gap: 0rem;
  }
}

.nav-link {
  color: #3d3434 !important;
}

.btn-custom {
  color: #fff !important;
  padding: 0.5rem 1rem;
}

.offcanvas-header {
	background-color: #e4e4e4;
}

.offcanvas-body {
	background-color: #e4e4e4;
  font-family: "Gasoek One Regular", sans-serif;
  font-weight: 100;
  font-size: 2rem;
  color: #3d3434;
}

@media (max-width: 1199px) {
  .offcanvas-body {
    justify-content: center;
  }
}

@media (min-width: 1200px){
  .offcanvas-body {
    justify-content: end;
  }
}

@media (min-width: 320px) and (max-width: 374px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 375px) and (max-width: 424px){
  .offcanvas-body a {
    font-size: 2rem;
    line-height: 0.8;
  }
}

@media (min-width: 425px) and (max-width: 767px){
  .offcanvas-header img {
    width: 40px;
  }
  
  .offcanvas-body a {
    font-size: 3rem;
    line-height: 0.8;
  }
}

@media (min-width: 768px) and (max-width: 1023px){
  .offcanvas-body a {
    font-size: 4rem;
    line-height: 0.8;
  }
}

@media (min-width: 1024px) and (max-width: 1199px){
  .offcanvas-body a {
    font-size: 6rem;
    line-height: 0.8;
  }
}

.modal-title {
  font-family: 'Gasoek One', sans-serif;
  font-size: 2rem;
  color: #3d3434;
}

/* HERO SECTION */
.hero-meet {
  font-family: 'Gasoek One', sans-serif;
  color: #3d3434;
  font-size: 8rem;
  line-height: 1;
  font-weight: 100;
}

.hero-everyone {
  font-family: 'Pinyon Script', cursive;
  color: #d21913;
  font-size: 12rem;
  line-height: 1;
  font-weight: 100;
  margin-top: -8rem;
}

/* FEATURED DANCERS*/
.highlight {
  margin-bottom: 2rem;
}
.featured-title {
  font-family: 'Gasoek One', sans-serif;
  color: #3d3434;
  font-size: 8rem;
  text-align: center;
}

.featured-dancers img {
  width: 100%;
  max-height: 300px;
  height: 100%;
  object-fit: cover;
}

.featured-dancers h4 {
  font-family: 'Gasoek One', sans-serif;
  font-weight: 100;
  color: #d21913 !important;
  font-size: 3rem;
}

.featured-dancers p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 0;
  color: #3d3434;
  font-size: 1rem;
}

/* COMMUNITY VIDEOS */
.cvsection {
  background: #3d3434;
}

.cvsection h2 {
  font-family: 'Gasoek One', sans-serif;
  font-size: 8rem;
  text-align: center;
  color: #e4e4e4;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.community-video-thumb-wrapper {
  aspect-ratio: 9/16;
  overflow: hidden;
  cursor: pointer;
}

.community-video-thumb-wrapper img {
  transition: transform 0.3s ease;
}

.community-video-thumb-wrapper:hover img {
  transform: scale(1.05);
}

.community-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
}

.community-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.community-modal-content {
  background-color: #f2f2f2;
  width: 100%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.community-modal-video {
  flex: 1;
  background-color: #000;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.community-modal-actions {
  padding: 1rem;
  display: flex;
  justify-content: center;
  background: #f2f2f2;
}

.community-modal-comments {
  width: 100%;
  max-width: 400px;
  overflow-y: auto;
  background-color: #fff;
  border-left: 1px solid #ccc;
}

.community-comment {
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.5rem;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-modal video {
  max-width: 90%;
  max-height: 80%;
}


/* SEE MORE */
.see-more {
  text-align: center;
  background: #3d3434;
  padding-bottom: 1rem;
}

.see-more-button {
  background-color: transparent;
  color: #fff;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 8rem;
  text-align: center;
  display: inline-block;
  transition: transform 0.4s ease;
}

.see-more-button:hover {
  color: #d21913;
  transform: scale(1.1);
}

/* dancers grid */
.dancegrid {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.dancegrid h2 {
  color: #3d3434;
  font-family: 'Gasoek One', sans-serif;
  font-size: 8rem;
}

.dancer-tile {
  padding: 1rem;
}

.dancer-tile img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  max-width: 240px;
  height: auto;
}

.dancer-tile .p-2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #3d3434;
  font-size: 1.2rem;
  text-align: left;
}

.arrow {
  font-size: 1.25rem;
  font-weight: bold;
}

@media (max-width: 576px) {
  .dancer-tile .p-2 {
    font-size: 0.9rem;
  }

  .arrow {
    font-size: 1rem;
  }
}

.icon-fluid {
  width: 100%;
}

.icon-fluid img {
  width: 100%;
  height: auto;
  object-fit: fill;
  animation: bounce 1.5s ease infinite;
  display: block;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Footer */
.site-footer {
  background-color: #e4e4e4;
  border-top: 2px solid #3d3434;
  padding: 3rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left li {
  font-size: 2rem;
  font-weight: 100;
  color: #3d3434;
  font-family: 'Gasoek One', sans-serif;
  line-height: 1.4;
  list-style: none;
  text-align: left;
}

.footer-center .footer-logo {
  width: 60px;
  height: 60px;
  border: 1px solid #3d3434;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #3d3434;
}

.footer-logo img {
  width: 100%;
  max-width: 150px;
}

.footer-right {
  text-align: center;
  color: #3d3434;
}

.social-icons {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.social-icons i {
  margin: 0 0.5rem;
  cursor: pointer;
}


@media (min-width: 320px) and (max-width: 424px){
.hero-meet {
    font-size: 2.5rem;
}

  .hero-everyone {
    font-size: 5rem;
}

  .lead {
    font-size: 1rem;
}

.cvsection h2 {
  font-size: 2.5rem;
}

.dancegrid h2 {
  font-size: 6rem;
}

  .featured-title {
  font-size: 3rem;
}

  .featured-dancers h4 {
  font-size: 1.8rem;
}

  .see-more-button {
    font-size: 3rem;
  }
}

@media (min-width: 425px) and (max-width: 767px){
    .hero-meet {
    font-size: 2.5rem;
}

  .hero-everyone {
    font-size: 5rem;
}

  .lead {
    font-size: 1rem;
}

.cvsection h2 {
  font-size: 3.5rem;
}

  .featured-title {
  font-size: 4rem;
}

.featured-dancers h4 {
  font-size: 2rem;
}

.see-more-button {
    font-size: 4rem;
  }

  .dancer-tile .p-2 {
  font-size: 1rem;
}
}

@media (min-width: 768px) and (max-width: 1023px){
  .hero-meet {
    font-size: 4rem;
}

  .hero-everyone {
    font-size: 8rem;
}

  .lead {
    font-size: 1rem;
}

.cvsection h2 {
  font-size: 5rem;
}

  .featured-title {
  font-size: 6rem;
}

.featured-dancers h4 {
  font-size: 2rem;
}

  .see-more-button {
    font-size: 6rem;
  }
  .dancer-tile .p-2 {
  font-size: 1rem;
}
}

@media (min-width: 1024px) and (max-width: 1439px){
  .hero-meet {
    font-size: 6rem;
}

  .hero-everyone {
    font-size: 10rem;
}

  .lead {
    font-size: 1rem;
}

  .featured-title {
  font-size: 8rem;
}

  .see-more-button {
    font-size: 8rem;
}

.dancer-tile .p-2 {
  font-size: 1.2rem;
}
}

